home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Stacks / Hyper Education / Mathematics / Subtraction / card_9458.txt < prev    next >
Encoding:
Text File  |  1988-04-19  |  1.1 KB  |  52 lines

  1. -- card: 9458 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 9130
  5. -- name: 
  6.  
  7.  
  8. -- part 1 (button)
  9. -- low flags: 00
  10. -- high flags: 8003
  11. -- rect: left=3 top=306 right=338 bottom=67
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 1
  15. -- font id: 0
  16. -- text size: 12
  17. -- style flags: 0
  18. -- line height: 16
  19. -- part name: Return
  20. ----- HyperTalk script -----
  21. on mouseUp
  22.   go to first card
  23. end mouseUp
  24.  
  25.  
  26.  
  27. -- part 2 (button)
  28. -- low flags: 00
  29. -- high flags: 8003
  30. -- rect: left=445 top=306 right=338 bottom=509
  31. -- title width / last selected line: 0
  32. -- icon id / first selected line: 0 / 0
  33. -- text alignment: 1
  34. -- font id: 0
  35. -- text size: 12
  36. -- style flags: 0
  37. -- line height: 16
  38. -- part name: Reset
  39. ----- HyperTalk script -----
  40. on mouseUp
  41.   answer "Are you sure you want to erase this?" with "OK" or "Cancel"
  42.   if it = "OK" then
  43.     put empty into field "Name"
  44.     put empty into field "Date"
  45.     put empty into field "Skill"
  46.     put empty into field "Attempts"
  47.     put empty into field "Correct"
  48.     put empty into field "Percent"
  49.   end if
  50. end mouseUp
  51.  
  52.